home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Technical Documentation / Sample Code / DTS.Lib & Samples / DTS.Draw / IdleTasks.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-22  |  906 b   |  41 lines  |  [TEXT/MPS ]

  1. /*
  2. ** Apple Macintosh Developer Technical Support
  3. **
  4. ** File:        IdleTasks.c
  5. ** Written by:    Eric Soldan
  6. **
  7. ** Copyright © 1990-1992 Apple Computer, Inc.
  8. ** All rights reserved.
  9. */
  10.  
  11. /* This function is called when a null event is received.  Do appropriate tasks
  12. ** for null event situations, such as handling balloon help for window. */
  13.  
  14.  
  15.  
  16. /*****************************************************************************/
  17.  
  18.  
  19.  
  20. #include "App.h"            /* Get the application includes/typedefs, etc.    */
  21. #include "App.Common.h"        /* Get the stuff in common with rez.            */
  22. #include "App.protos.h"        /* Get the prototypes for the application.        */
  23.  
  24.  
  25.  
  26. /*****************************************************************************/
  27. /*****************************************************************************/
  28.  
  29.  
  30.  
  31. #pragma segment Main
  32. void    DoIdleTasks(EventRecord *event)
  33. {
  34. #pragma unused (event)
  35.  
  36.     DynamicBalloonHelp();
  37. }
  38.  
  39.  
  40.  
  41.